home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000398_anthonypieper@cs.com_Fri Nov 7 14:19:50 2003.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!panix!newsfeed.mathworks.com!news.maxwell.syr.edu!postnews1.google.com!not-for-mail
  2. From: anthonypieper@cs.com (newexpectuser)
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Problem with Kermit spawned from Expect script sending files
  5. Date: 7 Nov 2003 09:46:53 -0800
  6. Organization: http://groups.google.com
  7. Lines: 24
  8. Message-ID: <f0bb0f39.0311070946.62574f98@posting.google.com>
  9. References: <f0bb0f39.0311061216.1ba040a0@posting.google.com> <slrnbqlcid.ooo.fdc@sesame.cc.columbia.edu> <f0bb0f39.0311070527.6ce76ffc@posting.google.com> <slrnbqnbfm.380.fdc@sesame.cc.columbia.edu>
  10. NNTP-Posting-Host: 209.251.39.194
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1068227214 31947 127.0.0.1 (7 Nov 2003 17:46:54 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: Fri, 7 Nov 2003 17:46:54 +0000 (UTC)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14653
  17.  
  18. I tried the /pty, but when I run it (via ./scriptname.sh), it puts me
  19. at a "C-Kermit>" prompt ?
  20. Frank da Cruz <fdc@columbia.edu> wrote in message news:<slrnbqnbfm.380.fdc@sesame.cc.columbia.edu>...
  21. > In article <f0bb0f39.0311070527.6ce76ffc@posting.google.com>,
  22. > newexpectuser wrote:
  23. > : 
  24. > : I looked at the article and have tried this simple connection:
  25. > : 
  26. > :   #!/usr/bin/kermit +
  27. > :   echo "Starting"
  28. > :   set host /pipe ssh -e none -l /user:root 111.111.11.111
  29. > :   lineout "mypassword"
  30. > :   echo "Connected"
  31. > :   quit
  32. > : 
  33. > : With this above it does connect, but still waits for me to enter a
  34. > : password, I thought the lineout would do this for me, that is why I
  35. > : had mentioned EXPECT earlier, it can pass this value via the "send"
  36. > : command in EXPECT.
  37. > : 
  38. > What if you use "set host /pty" instead of "set host /pipe"?  Expect uses
  39. > ptys, so if you tell Kermit to use a pty, it should work like Expect.
  40. > - Frank
  41.